home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Visual Basic Source Code
/
Visual Basic Source Code.iso
/
vbsource
/
fade
/
frmclose.frm
(
.txt
)
< prev
next >
Wrap
Visual Basic Form
|
1999-09-02
|
2KB
|
60 lines
VERSION 4.00
Begin VB.Form frmClose
BorderStyle = 1 'Fixed Single
Caption = " Codepad Text Has Changed"
ClientHeight = 1350
ClientLeft = 2835
ClientTop = 2970
ClientWidth = 3645
ClipControls = 0 'False
ControlBox = 0 'False
Height = 1785
Left = 2775
LinkTopic = "frmClose"
ScaleHeight = 1350
ScaleWidth = 3645
Top = 2595
Width = 3765
Begin VB.Frame Frame1
Caption = "Unsaved Information Will Be Lost In 3 Seconds"
Height = 1335
Left = -15
TabIndex = 0
Top = 0
Width = 3660
Begin VB.Frame Frame2
Height = 975
Left = 210
TabIndex = 1
Top = 210
Width = 3285
Begin VB.CommandButton cmdClose
Caption = "CLOSE"
Height = 525
Left = 1770
TabIndex = 3
Top = 270
Width = 1320
End
Begin VB.CommandButton cmdAbort
Caption = "ABORT"
Height = 540
Left = 210
TabIndex = 2
Top = 255
Width = 1290
End
End
End
Attribute VB_Name = "frmClose"
Attribute VB_Creatable = False
Attribute VB_Exposed = False
Option Explicit
Private Sub cmdAbort_Click()
frmCode.Timer1.Enabled = False
Me.Hide
frmCode.Show
End Sub
Private Sub cmdClose_Click()
End Sub